home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Win2003 SrvWiz.xpl < prev    next >
Text File  |  2004-02-07  |  1KB  |  46 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="Startup/Shutdown\Startup\Windows NT/2K/XP\60) Windows Launch"
  5. "UIPATH 2"="Network\Server\Common"
  6. "UIPATH 3"="Program Options\Built in Windows Apps\Configure Your Server"
  7. "NAME"="Start Configure Server Wizard"
  8. "VERSION"="1.00"
  9. "OSVERSION"="0000011"
  10. "LANGUAGE"="VBScript"
  11. "TEXT 1"="Start "Configure Your Server Wizard" on startup "
  12. "DESCRIPTION 1"="If you do not want the "Configure Your Server Wizard" to be automatically launched, use this setting."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com/"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="http://support.microsoft.com/default.aspx?scid=kb;EN-US;312580"
  17.  
  18. sV1="HKCU\Software\Microsoft\Windows NT\CurrentVersion\srvWiz\@" 'DW = 0 = no run
  19.  
  20.  
  21. Sub Plugin_Initialize 
  22.  i=RegReadValue(sV1)
  23.  if i<>"0" or IsEmpty(i) then
  24.     SetUIElement 1,true
  25.  end if
  26. End Sub
  27.  
  28.  
  29. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  30.  if GetUIElement(1)=true then
  31.     Call RegWriteValue(sV1,"",1)    
  32.  else
  33.     Call RegWriteValue(sV1,0,1)
  34.  end if
  35.  
  36.  
  37.  Call Logoff
  38. End Sub
  39.  
  40.  
  41. Sub Plugin_Terminate 
  42. End Sub
  43.  
  44.  
  45.  
  46.